home *** CD-ROM | disk | FTP | other *** search
/ Linux Cubed Series 7: Sunsite / Linux Cubed Series 7 - Sunsite Vol 1.iso / system / shells / scsh-0.4 / scsh-0 / scsh-0.4.2 / emacs / cmushell.el < prev    next >
Lisp/Scheme  |  1995-10-13  |  26KB  |  595 lines

  1. ;;; -*-Emacs-Lisp-*- General command interpreter in a window stuff
  2. ;;; Copyright Olin Shivers (1988).
  3. ;;; Please imagine a long, tedious, legalistic 5-page gnu-style copyright
  4. ;;; notice appearing here to the effect that you may use this code any
  5. ;;; way you like, as long as you don't charge money for it, remove this
  6. ;;; notice, or hold me liable for its results.
  7.  
  8. ;;; The changelog is at the end of file.
  9.  
  10. ;;; Please send me bug reports, bug fixes, and extensions, so that I can
  11. ;;; merge them into the master source.
  12. ;;;     - Olin Shivers (shivers@cs.cmu.edu)
  13.  
  14. ;;; This file defines a a shell-in-a-buffer package (cmushell mode) built on
  15. ;;; top of comint mode.  Cmushell mode is similar to, and intended to replace,
  16. ;;; its counterpart in the standard gnu emacs release. This replacement is
  17. ;;; more featureful, robust, and uniform than the released version.
  18.  
  19. ;;; Since this mode is built on top of the general command-interpreter-in-
  20. ;;; a-buffer mode (comint mode), it shares a common base functionality, 
  21. ;;; and a common set of bindings, with all modes derived from comint mode.
  22. ;;; This makes these modes easier to use.
  23.  
  24. ;;; For documentation on the functionality provided by comint mode, and
  25. ;;; the hooks available for customising it, see the file comint.el.
  26. ;;; For further information on cmushell mode, see the comments below.
  27.  
  28. ;;; Needs fixin:
  29. ;;; When sending text from a source file to a subprocess, the process-mark can 
  30. ;;; move off the window, so you can lose sight of the process interactions.
  31. ;;; Maybe I should ensure the process mark is in the window when I send
  32. ;;; text to the process? Switch selectable?
  33.  
  34. (require 'comint)
  35. (provide 'cmushell)
  36.  
  37. ;; YOUR .EMACS FILE
  38. ;;=============================================================================
  39. ;; Some suggestions for your .emacs file.
  40. ;;
  41. ;; ; If cmushell lives in some non-standard directory, you must tell emacs
  42. ;; ; where to get it. This may or may not be necessary.
  43. ;; (setq load-path (cons (expand-file-name "~jones/lib/emacs") load-path))
  44. ;;
  45. ;; ; Autoload cmushell from file cmushell.el
  46. ;; (autoload 'cmushell "cmushell"
  47. ;;           "Run an inferior shell process."
  48. ;;           t)
  49. ;;
  50. ;; ; Define C-c C-t to run my favorite command in cmushell mode:
  51. ;; (setq cmushell-load-hook
  52. ;;       '((lambda () 
  53. ;;           (define-key cmushell-mode-map "\C-c\C-t" 'favorite-cmd))))
  54.  
  55.  
  56. ;;; Brief Command Documentation:
  57. ;;;============================================================================
  58. ;;; Comint Mode Commands: (common to cmushell and all comint-derived modes)
  59. ;;;
  60. ;;; m-p        comint-previous-input            Cycle backwards in input history
  61. ;;; m-n        comint-next-input                  Cycle forwards
  62. ;;; c-c r   comint-previous-input-matching  Search backwards in input history
  63. ;;; return  comint-send-input
  64. ;;; c-a     comint-bol                      Beginning of line; skip prompt.
  65. ;;; c-d        comint-delchar-or-maybe-eof        Delete char unless at end of buff.
  66. ;;; c-c c-u comint-kill-input                ^u
  67. ;;; c-c c-w backward-kill-word            ^w
  68. ;;; c-c c-c comint-interrupt-subjob         ^c
  69. ;;; c-c c-z comint-stop-subjob                ^z
  70. ;;; c-c c-\ comint-quit-subjob                ^\
  71. ;;; c-c c-o comint-kill-output            Delete last batch of process output
  72. ;;; c-c c-r comint-show-output            Show last batch of process output
  73. ;;;         send-invisible                  Read line w/o echo & send to proc
  74. ;;;         comint-continue-subjob        Useful if you accidentally suspend
  75. ;;;                            top-level job.
  76. ;;; comint-mode-hook is the comint mode hook.
  77.  
  78. ;;; Shell Mode Commands:
  79. ;;;         cmushell                Fires up the shell process.
  80. ;;; tab     comint-dynamic-complete        Complete a partial file name
  81. ;;; m-?     comint-dynamic-list-completions List completions in help buffer
  82. ;;;         dirs                    Resync the buffer's dir stack.
  83. ;;;         dirtrack-toggle                 Turn dir tracking on/off.
  84. ;;;
  85. ;;; The cmushell mode hook is cmushell-mode-hook
  86. ;;; The cmushell-load-hook is run after this file is loaded.
  87. ;;; comint-prompt-regexp is initialised to shell-prompt-pattern, for backwards
  88. ;;; compatibility.
  89.  
  90. ;;; Read the rest of this file for more information.
  91.  
  92. ;;; SHELL.EL COMPATIBILITY
  93. ;;;============================================================================
  94. ;;; In brief: this package should have no trouble coexisting with shell.el.
  95. ;;; 
  96. ;;; Most customising variables -- e.g., explicit-shell-file-name -- are the
  97. ;;; same, so the users shouldn't have much trouble. Hooks have different
  98. ;;; names, however, so you can customise shell mode differently from cmushell
  99. ;;; mode. You basically just have to remember to type M-x cmushell instead of
  100. ;;; M-x shell.
  101. ;;; 
  102. ;;; It would be nice if this file was completely plug-compatible with the old
  103. ;;; shell package -- if you could just name this file shell.el, and have it
  104. ;;; transparently replace the old one. But you can't.  Several other packages
  105. ;;; (tex-mode, background, dbx, gdb, kermit, monkey, prolog, telnet) are also
  106. ;;; clients of shell mode. These packages assume detailed knowledge of shell
  107. ;;; mode internals in ways that are incompatible with cmushell mode (mostly
  108. ;;; because of cmushell mode's greater functionality).  So, unless we are
  109. ;;; willing to port all of these packages, we can't have this file be a
  110. ;;; complete replacement for shell.el -- that is, we can't name this file
  111. ;;; shell.el, and its main entry point (shell), because dbx.el will break
  112. ;;; when it loads it in and tries to use it.
  113. ;;; 
  114. ;;; There are two ways to fix this. One: rewrite these other modes to use the
  115. ;;; new package. This is a win, but can't be assumed. The other, backwards
  116. ;;; compatible route, is to make this package non-conflict with shell.el, so
  117. ;;; both files can be loaded in at the same time. And *that* is why some
  118. ;;; functions and variables have different names: (cmushell),
  119. ;;; cmushell-mode-map, that sort of thing. All the names have been carefully
  120. ;;; chosen so that shell.el and cmushell.el won't tromp on each other.
  121.  
  122. ;;; Customisation and Buffer Variables
  123. ;;; ===========================================================================
  124. ;;; 
  125.  
  126. ;In loaddefs.el now.
  127. ;(defconst shell-prompt-pattern
  128. ;  "^[^#$%>]*[#$%>] *"
  129. ;  "*Regexp used by Newline command to match subshell prompts.
  130. ;;; Change the doc string for shell-prompt-pattern:
  131. (put 'shell-prompt-pattern 'variable-documentation
  132.   "Regexp to match prompts in the inferior shell.
  133. Defaults to \"^[^#$%>]*[#$%>] *\", which works pretty well.
  134. This variable is used to initialise comint-prompt-regexp in the 
  135. shell buffer.
  136.  
  137. This is a fine thing to set in your .emacs file.")
  138.  
  139. (defvar shell-popd-regexp "popd"
  140.   "*Regexp to match subshell commands equivalent to popd.")
  141.  
  142. (defvar shell-pushd-regexp "pushd"
  143.   "*Regexp to match subshell commands equivalent to pushd.")
  144.  
  145. (defvar shell-cd-regexp "cd"
  146.   "*Regexp to match subshell commands equivalent to cd.")
  147.  
  148. (defvar explicit-shell-file-name nil
  149.   "*If non-nil, is file name to use for explicitly requested inferior shell.")
  150.  
  151. (defvar explicit-csh-args
  152.   (if (eq system-type 'hpux)
  153.       ;; -T persuades HP's csh not to think it is smarter
  154.       ;; than us about what terminal modes to use.
  155.       '("-i" "-T")
  156.     '("-i"))
  157.   "*Args passed to inferior shell by M-x cmushell, if the shell is csh.
  158. Value is a list of strings, which may be nil.")
  159.  
  160. ;;; All the above vars aren't prefixed "cmushell-" to make them
  161. ;;; backwards compatible w/shell.el and old .emacs files.
  162.  
  163. (defvar cmushell-dirstack nil
  164.   "List of directories saved by pushd in this buffer's shell.")
  165.  
  166. (defvar cmushell-dirstack-query "dirs"
  167.   "Command used by shell-resync-dirlist to query shell.")
  168.  
  169. (defvar cmushell-mode-map '())
  170. (cond ((not cmushell-mode-map)
  171.        (setq cmushell-mode-map (full-copy-sparse-keymap comint-mode-map))
  172.        (define-key cmushell-mode-map "\t" 'comint-dynamic-complete)
  173.        (define-key cmushell-mode-map "\M-?"  'comint-dynamic-list-completions)))
  174.  
  175. (defvar cmushell-mode-hook '()
  176.   "*Hook for customising cmushell mode")
  177.  
  178.  
  179. ;;; Basic Procedures
  180. ;;; ===========================================================================
  181. ;;;
  182.  
  183. (defun cmushell-mode ()
  184.   "Major mode for interacting with an inferior shell.
  185. Return after the end of the process' output sends the text from the 
  186.     end of process to the end of the current line.
  187. Return before end of process output copies rest of line to end (skipping
  188.     the prompt) and sends it.
  189. M-x send-invisible reads a line of text without echoing it, and sends it to
  190.     the shell.
  191.  
  192. If you accidentally suspend your process, use \\[comint-continue-subjob]
  193. to continue it.
  194.  
  195. cd, pushd and popd commands given to the shell are watched by Emacs to keep
  196. this buffer's default directory the same as the shell's working directory.
  197. M-x dirs queries the shell and resyncs Emacs' idea of what the current 
  198.     directory stack is.
  199. M-x dirtrack-toggle turns directory tracking on and off.
  200.  
  201. \\{cmushell-mode-map}
  202. Customisation: Entry to this mode runs the hooks on comint-mode-hook and
  203. cmushell-mode-hook (in that order).
  204.  
  205. Variables shell-cd-regexp, shell-pushd-regexp and shell-popd-regexp are used
  206. to match their respective commands."
  207.   (interactive)
  208.   (comint-mode)
  209.   (setq comint-prompt-regexp shell-prompt-pattern)
  210.   (setq major-mode 'cmushell-mode)
  211.   (setq mode-name "CMU shell")
  212.   (use-local-map cmushell-mode-map)
  213.   (make-local-variable 'cmushell-dirstack)
  214.   (setq cmushell-dirstack nil)
  215.   (make-local-variable 'cmushell-dirtrackp)
  216.   (setq cmushell-dirtrackp t)
  217.   (setq comint-input-sentinel 'cmushell-directory-tracker)
  218.   (run-hooks 'cmushell-mode-hook))
  219.  
  220.  
  221. (defun cmushell ()
  222.   "Run an inferior shell, with I/O through buffer *cmushell*.
  223. If buffer exists but shell process is not running, make new shell.
  224. If buffer exists and shell process is running, 
  225.  just switch to buffer *cmushell*.
  226. Program used comes from variable explicit-shell-file-name,
  227.  or (if that is nil) from the ESHELL environment variable,
  228.  or else from SHELL if there is no ESHELL.
  229. If a file ~/.emacs_SHELLNAME exists, it is given as initial input
  230.  (Note that this may lose due to a timing error if the shell
  231.   discards input when it starts up.)
  232. The buffer is put in cmushell-mode, giving commands for sending input
  233. and controlling the subjobs of the shell.  See cmushell-mode.
  234. See also variable shell-prompt-pattern.
  235.  
  236. The shell file name (sans directories) is used to make a symbol name
  237. such as `explicit-csh-arguments'.  If that symbol is a variable,
  238. its value is used as a list of arguments when invoking the shell.
  239. Otherwise, one argument `-i' is passed to the shell.
  240.  
  241. \(Type \\[describe-mode] in the shell buffer for a list of commands.)"
  242.   (interactive)
  243.   (let ((buffer-name (concat "*" cmushell-buffer-base-name "*")))
  244.     (cond ((not (comint-check-proc buffer-name))
  245.        (let* ((prog (or explicit-shell-file-name
  246.                 (getenv "ESHELL")
  247.                 (getenv "SHELL")
  248.                 "/bin/sh"))             
  249.           (name (file-name-nondirectory prog))
  250.           (startfile (concat "~/.emacs_" name))
  251.           (xargs-name (intern-soft (concat "explicit-" name "-args"))))
  252.          (set-buffer (apply 'make-comint cmushell-buffer-base-name prog
  253.                 (if (file-exists-p startfile) startfile)
  254.                 (if (and xargs-name (boundp xargs-name))
  255.                     (symbol-value xargs-name)
  256.                     '("-i"))))
  257.          (cmushell-mode))))
  258.     (switch-to-buffer buffer-name)))
  259.  
  260. (defvar cmushell-buffer-base-name "cmushell"
  261.   "Name of buffer in which CMU shell is to run.")
  262.  
  263.  
  264. ;;; Directory tracking
  265. ;;; ===========================================================================
  266. ;;; This code provides the cmushell mode input sentinel
  267. ;;;     CMUSHELL-DIRECTORY-TRACKER
  268. ;;; that tracks cd, pushd, and popd commands issued to the shell, and
  269. ;;; changes the current directory of the shell buffer accordingly.
  270. ;;;
  271. ;;; This is basically a fragile hack, although it's more accurate than
  272. ;;; the released version in shell.el. It has the following failings:
  273. ;;; 1. It doesn't know about the cdpath shell variable.
  274. ;;; 2. It only spots the first command in a command sequence. E.g., it will
  275. ;;;    miss the cd in "ls; cd foo"
  276. ;;; 3. More generally, any complex command (like ";" sequencing) is going to
  277. ;;;    throw it. Otherwise, you'd have to build an entire shell interpreter in
  278. ;;;    emacs lisp.  Failing that, there's no way to catch shell commands where
  279. ;;;    cd's are buried inside conditional expressions, aliases, and so forth.
  280. ;;;
  281. ;;; The whole approach is a crock. Shell aliases mess it up. File sourcing
  282. ;;; messes it up. You run other processes under the shell; these each have
  283. ;;; separate working directories, and some have commands for manipulating
  284. ;;; their w.d.'s (e.g., the lcd command in ftp). Some of these programs have
  285. ;;; commands that do *not* affect the current w.d. at all, but look like they
  286. ;;; do (e.g., the cd command in ftp).  In shells that allow you job
  287. ;;; control, you can switch between jobs, all having different w.d.'s. So
  288. ;;; simply saying %3 can shift your w.d..
  289. ;;;
  290. ;;; The solution is to relax, not stress out about it, and settle for
  291. ;;; a hack that works pretty well in typical circumstances. Remember
  292. ;;; that a half-assed solution is more in keeping with the spirit of Unix, 
  293. ;;; anyway. Blech.
  294. ;;;
  295. ;;; One good hack not implemented here for users of programmable shells
  296. ;;; is to program up the shell w.d. manipulation commands to output
  297. ;;; a coded command sequence to the tty. Something like
  298. ;;;     ESC | <cwd> |
  299. ;;; where <cwd> is the new current working directory. Then trash the
  300. ;;; directory tracking machinery currently used in this package, and
  301. ;;; replace it with a process filter that watches for and strips out
  302. ;;; these messages.
  303.  
  304. ;;; REGEXP is a regular expression. STR is a string. START is a fixnum.
  305. ;;; Returns T if REGEXP matches STR where the match is anchored to start
  306. ;;; at position START in STR. Sort of like LOOKING-AT for strings.
  307. (defun cmushell-front-match (regexp str start)
  308.   (eq start (string-match regexp str start)))
  309.  
  310. (defun cmushell-directory-tracker (str)
  311.   "Tracks cd, pushd and popd commands issued to the shell.
  312. This function is called on each input passed to the shell.
  313. It watches for cd, pushd and popd commands and sets the buffer's
  314. default directory to track these commands.
  315.  
  316. You may toggle this tracking on and off with M-x dirtrack-toggle.
  317. If emacs gets confused, you can resync with the shell with M-x dirs.
  318.  
  319. See variables shell-cd-regexp, shell-pushd-regexp, and shell-popd-regexp.
  320. Environment variables are expanded, see function substitute-in-file-name."
  321.   (condition-case err
  322.     (cond (cmushell-dirtrackp
  323.        (string-match "^\\s *" str) ; skip whitespace
  324.        (let ((bos (match-end 0))
  325.          (x nil))
  326.          (cond ((setq x (cmushell-match-cmd-w/optional-arg shell-popd-regexp
  327.                                    str bos))
  328.             (cmushell-process-popd (substitute-in-file-name x)))
  329.            ((setq x (cmushell-match-cmd-w/optional-arg shell-pushd-regexp
  330.                                    str bos))
  331.             (cmushell-process-pushd (substitute-in-file-name x)))
  332.            ((setq x (cmushell-match-cmd-w/optional-arg shell-cd-regexp
  333.                                    str bos))
  334.             (cmushell-process-cd (substitute-in-file-name x)))))))
  335.     (error (message (car (cdr err))))))
  336.  
  337.  
  338. ;;; Try to match regexp CMD to string, anchored at position START.
  339. ;;; CMD may be followed by a single argument. If a match, then return
  340. ;;; the argument, if there is one, or the empty string if not. If
  341. ;;; no match, return nil.
  342.  
  343. (defun cmushell-match-cmd-w/optional-arg (cmd str start)
  344.   (and (cmushell-front-match cmd str start)
  345.        (let ((eoc (match-end 0))) ; end of command
  346.      (cond ((cmushell-front-match "\\s *\\(\;\\|$\\)" str eoc)
  347.         "")            ; no arg
  348.            ((cmushell-front-match "\\s +\\([^ \t\;]+\\)\\s *\\(\;\\|$\\)"
  349.                       str eoc)
  350.         (substring str (match-beginning 1) (match-end 1))) ; arg
  351.            (t nil))))) ; something else.
  352. ;;; The first regexp is [optional whitespace, (";" or the end of string)].
  353. ;;; The second regexp is [whitespace, (an arg), optional whitespace,
  354. ;;;     (";" or end of string)].
  355.  
  356.  
  357. ;;; popd [+n]
  358. (defun cmushell-process-popd (arg)
  359.   (let ((num (if (zerop (length arg)) 0 ; no arg means +0
  360.          (cmushell-extract-num arg))))
  361.     (if (and num (< num (length cmushell-dirstack)))
  362.     (if (= num 0) ; condition-case because the CD could lose.
  363.         (condition-case nil (progn (cd (car cmushell-dirstack))
  364.                        (setq cmushell-dirstack
  365.                          (cdr cmushell-dirstack))
  366.                        (cmushell-dirstack-message))
  367.           (error (message "Couldn't cd.")))
  368.         (let* ((ds (cons nil cmushell-dirstack))
  369.            (cell (nthcdr (- num 1) ds)))
  370.           (rplacd cell (cdr (cdr cell)))
  371.           (setq cmushell-dirstack (cdr ds))
  372.           (cmushell-dirstack-message)))
  373.     (message "Bad popd."))))
  374.  
  375.  
  376. ;;; cd [dir]
  377. (defun cmushell-process-cd (arg)
  378.   (condition-case nil (progn (cd (if (zerop (length arg)) (getenv "HOME")
  379.                      arg))
  380.                  (cmushell-dirstack-message))
  381.        (error (message "Couldn't cd."))))
  382.  
  383.  
  384. ;;; pushd [+n | dir]
  385. (defun cmushell-process-pushd (arg)
  386.   (if (zerop (length arg))
  387.       ;; no arg -- swap pwd and car of shell stack
  388.       (condition-case nil (if cmushell-dirstack
  389.                   (let ((old default-directory))
  390.                 (cd (car cmushell-dirstack))
  391.                 (setq cmushell-dirstack
  392.                       (cons old (cdr cmushell-dirstack)))
  393.                 (cmushell-dirstack-message))
  394.                   (message "Directory stack empty."))
  395.     (message "Couldn't cd."))
  396.  
  397.       (let ((num (cmushell-extract-num arg)))
  398.     (if num                ; pushd +n
  399.         (if (> num (length cmushell-dirstack))
  400.         (message "Directory stack not that deep.")
  401.         (let* ((ds (cons default-directory cmushell-dirstack))
  402.                (dslen (length ds))
  403.                (front (nthcdr num ds))
  404.                (back (reverse (nthcdr (- dslen num) (reverse ds))))
  405.                (new-ds (append front back)))
  406.           (condition-case nil
  407.               (progn (cd (car new-ds))
  408.                  (setq cmushell-dirstack (cdr new-ds))
  409.                  (cmushell-dirstack-message))
  410.             (error (message "Couldn't cd.")))))
  411.            
  412.         ;; pushd <dir>
  413.         (let ((old-wd default-directory))
  414.           (condition-case nil
  415.           (progn (cd arg)
  416.              (setq cmushell-dirstack
  417.                    (cons old-wd cmushell-dirstack))
  418.              (cmushell-dirstack-message))
  419.         (error (message "Couldn't cd."))))))))
  420.  
  421. ;; If STR is of the form +n, for n>0, return n. Otherwise, nil.
  422. (defun cmushell-extract-num (str)
  423.   (and (string-match "^\\+[1-9][0-9]*$" str)
  424.        (string-to-int str)))
  425.  
  426.  
  427. (defun cmushell-dirtrack-toggle ()
  428.   "Turn directory tracking on and off in a cmushell buffer."
  429.   (interactive)
  430.   (setq cmushell-dirtrackp (not cmushell-dirtrackp))
  431.   (message "directory tracking %s."
  432.        (if cmushell-dirtrackp "ON" "OFF")))
  433.  
  434. ;;; For your typing convenience:
  435. (fset 'dirtrack-toggle 'cmushell-dirtrack-toggle)
  436.  
  437.  
  438. (defun cmushell-resync-dirs ()
  439.   "Resync the buffer's idea of the current directory stack.
  440. This command queries the shell with the command bound to 
  441. cmushell-dirstack-query (default \"dirs\"), reads the next
  442. line output and parses it to form the new directory stack.
  443. DON'T issue this command unless the buffer is at a shell prompt.
  444. Also, note that if some other subprocess decides to do output
  445. immediately after the query, its output will be taken as the
  446. new directory stack -- you lose. If this happens, just do the
  447. command again."
  448.   (interactive)
  449.   (let* ((proc (get-buffer-process (current-buffer)))
  450.      (pmark (process-mark proc)))
  451.     (goto-char pmark)
  452.     (insert cmushell-dirstack-query) (insert "\n")
  453.     (sit-for 0) ; force redisplay
  454.     (comint-send-string proc cmushell-dirstack-query) 
  455.     (comint-send-string proc "\n")
  456.     (set-marker pmark (point))
  457.     (let ((pt (point))) ; wait for 1 line
  458.       ;; This extra newline prevents the user's pending input from spoofing us.
  459.       (insert "\n") (backward-char 1)
  460.       (while (not (looking-at ".+\n"))
  461.     (accept-process-output proc)
  462.     (goto-char pt)))
  463.     (goto-char pmark) (delete-char 1) ; remove the extra newline
  464.     ;; That's the dirlist. grab it & parse it.
  465.     (let* ((dl (buffer-substring (match-beginning 0) (- (match-end 0) 1)))
  466.        (dl-len (length dl))
  467.        (ds '())            ; new dir stack
  468.        (i 0))
  469.       (while (< i dl-len)
  470.     ;; regexp = optional whitespace, (non-whitespace), optional whitespace
  471.     (string-match "\\s *\\(\\S +\\)\\s *" dl i) ; pick off next dir
  472.     (setq ds (cons (substring dl (match-beginning 1) (match-end 1))
  473.                ds))
  474.     (setq i (match-end 0)))
  475.       (let ((ds (reverse ds)))
  476.     (condition-case nil
  477.         (progn (cd (car ds))
  478.            (setq cmushell-dirstack (cdr ds))
  479.            (cmushell-dirstack-message))
  480.       (error (message "Couldn't cd.")))))))
  481.  
  482. ;;; For your typing convenience:
  483. (fset 'dirs 'cmushell-resync-dirs)
  484.  
  485.  
  486. ;;; Show the current dirstack on the message line.
  487. ;;; Pretty up dirs a bit by changing "/usr/jqr/foo" to "~/foo".
  488. ;;; (This isn't necessary if the dirlisting is generated with a simple "dirs".)
  489. ;;; All the commands that mung the buffer's dirstack finish by calling
  490. ;;; this guy.
  491. (defun cmushell-dirstack-message ()
  492.   (let ((msg "")
  493.     (ds (cons default-directory cmushell-dirstack)))
  494.     (while ds
  495.       (let ((dir (car ds)))
  496.     (if (string-match (format "^%s\\(/\\|$\\)" (getenv "HOME")) dir)
  497.         (setq dir (concat "~/" (substring dir (match-end 0)))))
  498.     (if (string-equal dir "~/") (setq dir "~"))
  499.     (setq msg (concat msg dir " "))
  500.     (setq ds (cdr ds))))
  501.     (message msg)))
  502.  
  503.  
  504.  
  505. ;;; Interfacing to client packages (and converting them)
  506. ;;;============================================================================
  507. ;;; Several gnu packages (tex-mode, background, dbx, gdb, kermit, prolog, 
  508. ;;; telnet are some) use the shell package as clients. Most of them would
  509. ;;; be better off using the comint package directly, but they predate it.
  510. ;;; The catch is that most of these packages (dbx, gdb, prolog, telnet)
  511. ;;; assume total knowledge of all the local variables that shell mode
  512. ;;; functions depend on. So they (kill-all-local-variables), then create
  513. ;;; the few local variables that shell.el functions depend on. Alas,
  514. ;;; cmushell.el functions depend on a different set of vars (for example,
  515. ;;; the input history ring is a local variable in cmushell.el's shell mode,
  516. ;;; whereas there is no input history ring in shell.el's shell mode).
  517. ;;; So we have a situation where the greater functionality of cmushell.el
  518. ;;; is biting us -- you can't just replace shell will cmushell.
  519. ;;;
  520. ;;; Altering these packages to use comint mode directly should *greatly*
  521. ;;; improve their functionality, and is actually pretty easy. It's
  522. ;;; mostly a matter of renaming a few variable names. See comint.el for more.
  523. ;;;     -Olin
  524.  
  525.  
  526.  
  527. ;;; Do the user's customisation...
  528. ;;;===============================
  529. (defvar cmushell-load-hook nil
  530.   "This hook is run when cmushell is loaded in.
  531. This is a good place to put keybindings.")
  532.     
  533. (run-hooks 'cmushell-load-hook)
  534.  
  535. ;;; Change Log
  536. ;;; ===========================================================================
  537. ;;; Olin 8/88
  538. ;;; Created.
  539. ;;;
  540. ;;; Olin 5/26/90
  541. ;;; - Split cmulisp and cmushell modes into separate files. 
  542. ;;;   Not only is this a good idea, it's apparently the way it'll be rel 19.
  543. ;;; - Souped up the directory tracking; it now can handle pushd, pushd +n, 
  544. ;;;   and popd +n.
  545. ;;; - Added cmushell-dirtrack-toggle command to toggle the directory
  546. ;;;   tracking that cmushell tries to do. This is useful, for example,
  547. ;;;   when you are running ftp -- it prevents the ftp "cd" command from
  548. ;;;   spoofing the tracking machinery. This command is also named 
  549. ;;;   dirtrack-toggle, so you need only type M-x dirtrack to run it.
  550. ;;; - Added cmushell-resync-dirs command. This queries the shell
  551. ;;;   for the current directory stack, and resets the buffer's stack
  552. ;;;   accordingly. This command is also named dirs, so you need only type
  553. ;;;   M-x dirs to run it.
  554. ;;; - Bits of the new directory tracking code were adapted from source
  555. ;;;   contributed by Vince Broman, Jeff Peck, and Barry Warsaw.
  556. ;;; - See also the improvements made to comint.el at the same time.
  557. ;;; - Renamed several variables. Mostly this comprised changing "shell"
  558. ;;;   to "cmushell" in the names. The only variables that are not prefixed
  559. ;;;   with "cmushell-" are the ones that are common with shell.el:
  560. ;;;       explicit-shell-file-name shell-prompt-pattern explicit-csh-args 
  561. ;;;       and shell-cd/popd/pushd-regexp
  562. ;;;   The variables and functions that were changed to have "cmushell-" 
  563. ;;;   prefixes are:
  564. ;;;       shell-directory-stack (v), shell-directory-tracker (f)
  565. ;;;   This should not affect users, only elisp hackers. Hopefully
  566. ;;;   one day shell.el will just go away, and we can drop all this
  567. ;;;   "cmushell" bullshit.
  568. ;;; - Upgraded process sends to use comint-send-string instead of
  569. ;;;   process-send-string.
  570. ;;;
  571. ;;; Olin 6/14/90
  572. ;;; - If your shell is named <shellname>, and a variable named
  573. ;;;   explicit-<shellname>-args exists, cmushell is supposed
  574. ;;;   to use its value as the arglist to the shell invocation.
  575. ;;;   E.g., if you define explicit-csh-args to be 
  576. ;;;   ("-ifx"), then when cmushell cranks up a csh, it execs it
  577. ;;;   as "csh -ifx". This is what is documented. What has actually
  578. ;;;   been the case is that the variable checked is
  579. ;;;   explicit-<shellname>-arguments, not explicit-<shellname>-args.
  580. ;;;   The documentation has been changed to conform to the code (for
  581. ;;;   backwards compatibility with shell.el). This bug is inherited from
  582. ;;;   the same bug in shell.el.
  583. ;;;   This bug reported by Stephen Anderson.
  584. ;;;
  585. ;;; Olin 9/5/90
  586. ;;; - Arguments to cd, popd, and pushd now have their env vars expanded
  587. ;;;   out by the tracking machinery. So if you say "cd $SRCDIR/funs", the
  588. ;;;   $SRCDIR var will be replaced by its value *in emacs' process
  589. ;;;   environment*. If this is different from the shell's binding of the
  590. ;;;   variable, you lose.  Several users needed this feature, fragile
  591. ;;;   though it may be.  The fix was contributed by sk@thp.Uni-Koeln.DE.
  592. ;;;
  593. ;;; Olin 3/12/91
  594. ;;; - Moved comint-dynamic-complete (filename completion) from M-tab to tab.
  595.